API Documentation
DecodedTextureData.h
1 // DecodedTextureData.h
3 //
5 
6 namespace nkGraphics
7 {
11  struct DecodedTextureData final
12  {
13  // Attributes
16 
17  bool _usedForNormal = false ;
18  } ;
19 }
nkGraphics::DecodedTextureData::_usedForNormal
bool _usedForNormal
Whether the texture is used for normal mapping (true) or not (false). Useful to know if a texture sho...
Definition: DecodedTextureData.h:17
nkMemory::String
Class holding information about a string, with ownership over the data.
Definition: String.h:22
nkGraphics::DecodedTextureData::_image
nkImages::Image _image
If parsing of the image is requested, the image data.
Definition: DecodedTextureData.h:14
nkGraphics::DecodedTextureData::_absPath
nkMemory::String _absPath
The absolute path of the linked image data, if any.
Definition: DecodedTextureData.h:15
nkGraphics::DecodedTextureData
Holds data about a decoded texture.
Definition: DecodedTextureData.h:12
nkGraphics
Encompasses all API of component NilkinsGraphics.
Definition: BoundingBox.h:7
nkImages::Image
Holds all information required for an image, with ownership over the data.
Definition: Image.h:14